@charset "utf-8";
/* CSS Document */


@font-face{
	font-family: lemon_bold;
	src:url("lemon_milk/LEMONMILK-Bold.otf");
}

@font-face{
	font-family: lemon_regular;
	src: url("lemon_milk/LEMONMILK-Regular.otf");
}

@font-face{
	font-family: lemon_light;
	src: url("lemon_milk/LEMONMILK-Light.otf");
}

@font-face{
	font-family: frutiger;
	src:url("Font text/frutiger-45-light.otf");
}



body{
	margin: 0;
	padding: 0;
	background:#EDEBE4;
	background-image:url("imagens/Fundo/fundo.png"); /* Caminho para a imagem */
    background-size: cover; /* Faz com que a imagem ocupe toda a área */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    background-attachment: fixed; /* Faz com que a imagem permaneça fixa ao rolar a página */
    background-position: center; /* Centraliza a imagem */
    height: 100vh; /* Garante que a altura inicial do fundo cubra a viewport */
	overflow-x: hidden;
}


.container{
	width: 100%;
	marging:auto;
}


.logo{
	width: 265px;
    height: 70px;
    position: absolute;
    top: 5px;
    left: 20px;
}

.logobranco{
	width: 235px;
    height: 150px;
    position: absolute;
    top: -10px;
    left: 20px;
}


/* Estilos para a camada preta */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            opacity: 0.4; /* Define a opacidade da camada preta */
        }

.botoes{
	display: flex;
	justify-content: space-between;
	position: absolute;
	padding: 20px 30px;
	top: 40px;
	align-items:center;
	width: 30%;
    top: 0;
    left: 1270px;
	font-family: lemon_light;
}

a {
	color:white;
	text-decoration: none;
	font-size: 20px;
}

.Contacto{
	display: inline-block;
	padding: 15px 30px;
	background-color: rgba(152, 39, 45, 1.0);
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s, box-shadow 0.3s;
}

.Contacto:hover{
	display: inline-block;
	padding: 15px 30px;
	background-color: rgba(190, 30, 35, 0.8);
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.botao{
	display: inline-block;
	position:relative;
	transition: color 0.3s;
}

.botao::after{
	content:"";
	position:absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: white;
	transform: scaleX(0);
	transition: transform 0.25s ease-out;
	tranform-origin: bottom center;
}


.botao:hover::after{
	transform: scaleX(1);
	tranfgorm-origin: bottom center;
}

.botao:hover{
	color:#E4E4E4;
	
	
}

.dropdow{
	border: none;
 	outline: none;
	float: left;
  	overflow: hidden;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}







#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%; 
  height: auto;
}

.text{
	position:absolute;
	color:white;
	font-size: 27px;
	top:290px;
	left: 50px;
	font-family: frutiger;
}

.bottom{
	display: inline-block;
	padding: 10px 50px;
	background-color: rgba(152, 39, 45, 0.1);
	border-radius: 30px;
	outline: 2px solid rgba(152,39,45,1.0); /* Contorno ao redor da borda */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s, box-shadow 0.3s;
	position:absolute;
	top: 580px;
	left: 50px;
	font-family: lemon_regular;
}

.bottom:hover{
	display: inline-block;
	padding: 10px 50px;
	background-color: rgba(152, 39, 45, 0.8);
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}


.rollingtext{
	font-size:80px;
	position: relative;
	top: 808px;
	color: white;
	font-family: lemon_regular;
}


/* Ajuste para celulares */
@media screen and (max-width: 320px) {
	
	body{
		height: 400vh;
		width: 394vw;
		overflow-x: hidden;
	}

	.container {
	width: 100%;
	padding: 10px;
    }
	
	
	.logo{
	width: 630px;
    height: 170px;
    position: absolute;
    top: 15px;
    left: 20px;
}

.logobranco{
	width: 235px;
    height: 150px;
    position: absolute;
    top: -10px;
    left: 20px;
}


/* Estilos para a camada preta */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 400vw;
            height: 400vh;
            background-color: black;
            opacity: 0.4; /* Define a opacidade da camada preta */
        }
	
	
	.menu-toggle {
   	display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

	
	
	

.botoes{
	display: flex;
	justify-content: space-between;
	position: absolute;
	padding: 20px 30px;
	top: 40px;
	align-items:center;
	width: 30%;
    top: 0;
    left: 810px;
	font-family: lemon_light;
	display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1000;
    pointer-events: none;
}
	
a {
	color:white;
	text-decoration: none;
	font-size: 20px;
}
	
.botoes a {
    color: white;
    font-size: 105px;
    padding: 25px;
    text-decoration: none;
    transition: color 0.3s;
}
	
.botoes a:hover {
    color: #ffcc00;
}
	
/* Quando o menu está ativo */
.botoes.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Ícone do menu hambúrguer (sem rotação) */
.menu-toggle {
    display: block;
    position: absolute;
    top: -15px;
    left: 1020px;
    font-size: 190px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}
	
	
	
	

.Contacto{
	display: inline-block;
	padding: 15px 30px;
	background-color: rgba(152, 39, 45, 1.0);
	border-radius: 100px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s, box-shadow 0.3s;
}

.Contacto:hover{
	display: inline-block;
	padding: 15px 30px;
	background-color: rgba(190, 30, 35, 0.8);
	border-radius: 100px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.botao{
	display: inline-block;
	position:relative;
	transition: color 0.3s;
}

.botao::after{
	content:"";
	position:absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: white;
	transform: scaleX(0);
	transition: transform 0.25s ease-out;
	tranform-origin: bottom center;
}


.botao:hover::after{
	transform: scaleX(1);
	tranfgorm-origin: bottom center;
}

.botao:hover{
	color:#E4E4E4;
	
	
}

.dropdow{
	border: none;
 	outline: none;
	float: left;
  	overflow: hidden;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
  left: 190px;
}







#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 400vw; /* Largura 100% da tela */
  height: 400vh; /* Altura 100% da tela */
  object-fit: cover; /* Garante que o vídeo ocupe a tela sem distorcer */
}

.text{
	position:absolute;
	color:white;
	font-size: 130px;
	top:40%;
	left: 7%;
	font-family: frutiger;
	text-align: center;
    width: 385%;
}

	.Sabermais{
		font-size: 90px;
	}
	
.bottom{
	display: inline-block;
	padding: 5px 88px;
	background-color: rgba(152, 39, 45, 0.1);
	border-radius: 150px;
	outline: 10px solid rgba(152,39,45,1.0); /* Contorno ao redor da borda */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s, box-shadow 0.3s;
	position:absolute;
	top: 2817px;
	left: 79%;
	font-family: lemon_regular;
	height: 120px;
    width: 173vw;
}

.bottom:hover{
	display: inline-block;
	padding: 10px 50px;
	background-color: rgba(152, 39, 45, 0.8);
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}


.rollingtext{
	font-size:200px;
	position: absolute;
	top: 3166px;
	color: white;
	font-family: lemon_regular;
	width: 395vw;
}
	
	
	
	
	
	
	
}	